~ubuntu-branches/debian/wheezy/linux-2.6/wheezy

« back to all changes in this revision

Viewing changes to lib/Kconfig

  • Committer: Bazaar Package Importer
  • Author(s): Ben Hutchings, Ben Hutchings, Aurelien Jarno
  • Date: 2011-06-07 12:14:05 UTC
  • mfrom: (43.1.9 sid)
  • Revision ID: james.westby@ubuntu.com-20110607121405-i3h1rd7nrnd2b73h
Tags: 2.6.39-2
[ Ben Hutchings ]
* [x86] Enable BACKLIGHT_APPLE, replacing BACKLIGHT_MBP_NVIDIA
  (Closes: #627492)
* cgroups: Disable memory resource controller by default. Allow it
  to be enabled using kernel parameter 'cgroup_enable=memory'.
* rt2800usb: Enable support for more USB devices including
  Linksys WUSB600N (Closes: #596626) (this change was accidentally
  omitted from 2.6.39-1)
* [x86] Remove Celeron from list of processors supporting PAE. Most
  'Celeron M' models do not.
* Update debconf template translations:
  - Swedish (Martin Bagge) (Closes: #628932)
  - French (David Prévot) (Closes: #628191)
* aufs: Update for 2.6.39 (Closes: #627837)
* Add stable 2.6.39.1, including:
  - ext4: dont set PageUptodate in ext4_end_bio()
  - pata_cmd64x: fix boot crash on parisc (Closes: #622997, #622745)
  - ext3: Fix fs corruption when make_indexed_dir() fails
  - netfilter: nf_ct_sip: validate Content-Length in TCP SIP messages
  - sctp: fix race between sctp_bind_addr_free() and
    sctp_bind_addr_conflict()
  - sctp: fix memory leak of the ASCONF queue when free asoc
  - md/bitmap: fix saving of events_cleared and other state
  - cdc_acm: Fix oops when Droids MuIn LCD is connected
  - cx88: Fix conversion from BKL to fine-grained locks (Closes: #619827)
  - keys: Set cred->user_ns in key_replace_session_keyring (CVE-2011-2184)
  - tmpfs: fix race between truncate and writepage
  - nfs41: Correct offset for LAYOUTCOMMIT
  - xen/mmu: fix a race window causing leave_mm BUG()
  - ext4: fix possible use-after-free in ext4_remove_li_request()
  For the complete list of changes, see:
   http://www.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.39.1
* Bump ABI to 2
* netfilter: Enable 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_NETPORT, IP_SET_LIST_SET, NETFILTER_XT_SET as modules
  (Closes: #629401)

[ Aurelien Jarno ]
* [mipsel/loongson-2f] Disable_SCSI_LPFC to workaround GCC ICE.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
config GENERIC_FIND_NEXT_BIT
23
23
        bool
24
24
 
 
25
config GENERIC_FIND_BIT_LE
 
26
        bool
 
27
 
25
28
config GENERIC_FIND_LAST_BIT
26
29
        bool
27
30
        default y
155
158
        boolean
156
159
 
157
160
#
 
161
# BCH support is selected if needed
 
162
#
 
163
config BCH
 
164
        tristate
 
165
 
 
166
config BCH_CONST_PARAMS
 
167
        boolean
 
168
        help
 
169
          Drivers may select this option to force specific constant
 
170
          values for parameters 'm' (Galois field order) and 't'
 
171
          (error correction capability). Those specific values must
 
172
          be set by declaring default values for symbols BCH_CONST_M
 
173
          and BCH_CONST_T.
 
174
          Doing so will enable extra compiler optimizations,
 
175
          improving encoding and decoding performance up to 2x for
 
176
          usual (m,t) values (typically such that m*t < 200).
 
177
          When this option is selected, the BCH library supports
 
178
          only a single (m,t) configuration. This is mainly useful
 
179
          for NAND flash board drivers requiring known, fixed BCH
 
180
          parameters.
 
181
 
 
182
config BCH_CONST_M
 
183
        int
 
184
        range 5 15
 
185
        help
 
186
          Constant value for Galois field order 'm'. If 'k' is the
 
187
          number of data bits to protect, 'm' should be chosen such
 
188
          that (k + m*t) <= 2**m - 1.
 
189
          Drivers should declare a default value for this symbol if
 
190
          they select option BCH_CONST_PARAMS.
 
191
 
 
192
config BCH_CONST_T
 
193
        int
 
194
        help
 
195
          Constant value for error correction capability in bits 't'.
 
196
          Drivers should declare a default value for this symbol if
 
197
          they select option BCH_CONST_PARAMS.
 
198
 
 
199
#
158
200
# Textsearch support is select'ed if needed
159
201
#
160
202
config TEXTSEARCH
201
243
       bool "Disable obsolete cpumask functions" if DEBUG_PER_CPU_MAPS
202
244
       depends on EXPERIMENTAL && BROKEN
203
245
 
 
246
config CPU_RMAP
 
247
        bool
 
248
        depends on SMP
 
249
 
204
250
#
205
251
# Netlink attribute parsing support is select'ed if needed
206
252
#
217
263
        tristate
218
264
 
219
265
config AVERAGE
220
 
        bool
 
266
        bool "Averaging functions"
 
267
        help
 
268
          This option is provided for the case where no in-kernel-tree
 
269
          modules require averaging functions, but a module built outside
 
270
          the kernel tree does. Such modules that use library averaging
 
271
          functions require Y here.
 
272
 
 
273
          If unsure, say N.
221
274
 
222
275
endmenu