13 Nov, 2008

10 commits

  • We have some reasons to kill netdev->priv:
    1. netdev->priv is equal to netdev_priv().
    2. netdev_priv() wraps the calculation of netdev->priv's offset, obviously
    netdev_priv() is more flexible than netdev->priv.
    But we cann't kill netdev->priv, because so many drivers reference to it
    directly.

    This patch is a safe convert for netdev->priv to netdev_priv(netdev).
    Since all of the netdev->priv is only for read.
    But it is too big to be sent in one mail.
    I split it to 4 parts and make every part smaller than 100,000 bytes,
    which is max size allowed by vger.

    Signed-off-by: Wang Chen
    Signed-off-by: David S. Miller

    Wang Chen
     
  • We have some reasons to kill netdev->priv:
    1. netdev->priv is equal to netdev_priv().
    2. netdev_priv() wraps the calculation of netdev->priv's offset, obviously
    netdev_priv() is more flexible than netdev->priv.
    But we cann't kill netdev->priv, because so many drivers reference to it
    directly.

    This patch is a safe convert for netdev->priv to netdev_priv(netdev).
    Since all of the netdev->priv is only for read.
    But it is too big to be sent in one mail.
    I split it to 4 parts and make every part smaller than 100,000 bytes,
    which is max size allowed by vger.

    Signed-off-by: Wang Chen
    Signed-off-by: David S. Miller

    Wang Chen
     
  • We have some reasons to kill netdev->priv:
    1. netdev->priv is equal to netdev_priv().
    2. netdev_priv() wraps the calculation of netdev->priv's offset, obviously
    netdev_priv() is more flexible than netdev->priv.
    But we cann't kill netdev->priv, because so many drivers reference to it
    directly.

    This patch is a safe convert for netdev->priv to netdev_priv(netdev).
    Since all of the netdev->priv is only for read.
    But it is too big to be sent in one mail.
    I split it to 4 parts and make every part smaller than 100,000 bytes,
    which is max size allowed by vger.

    Signed-off-by: Wang Chen
    Signed-off-by: David S. Miller

    Wang Chen
     
  • In commit 2518c7c2b3d7f0a6b302b4efe17c911f8dd4049f ("[XFRM]: Hash
    policies when non-prefixed."), the last use of xfrm_gen_policy() first
    argument was removed, but the argument was left behind in the
    prototype.

    Signed-off-by: Arnaud Ebalard
    Acked-by: Herbert Xu
    Signed-off-by: David S. Miller

    Arnaud Ebalard
     
  • Every user is under CONFIG_NET_DMA already, so ifdef field as well.

    Signed-off-by: Alexey Dobriyan
    Signed-off-by: David S. Miller

    Alexey Dobriyan
     
  • Signed-off-by: Michael Chan
    Signed-off-by: Matt Carlson
    Signed-off-by: Benjamin Li
    Signed-off-by: David S. Miller

    Michael Chan
     
  • Move all related timeout constants to the same location. BNX2
    prefix is also added to make them more consistent.

    Signed-off-by: Michael Chan
    Signed-off-by: Matt Carlson
    Signed-off-by: Benjamin Li
    Signed-off-by: David S. Miller

    Michael Chan
     
  • The default rx buffer water marks for XOFF/XON are for 1500 MTU. At
    larger MTUs, these water marks need to be adjusted for effective
    flow control.

    Signed-off-by: Michael Chan
    Signed-off-by: Matt Carlson
    Signed-off-by: Benjamin Li
    Signed-off-by: David S. Miller

    Michael Chan
     
  • On some quad-port cards that cannot support WoL on all ports due
    to excessive power consumption, the driver needs to restrict WoL
    on some ports by checking VAUX_PRESET bit.

    Signed-off-by: Michael Chan
    Signed-off-by: Matt Carlson
    Signed-off-by: Benjamin Li
    Signed-off-by: David S. Miller

    Michael Chan
     
  • Signed-off-by: Michael Chan
    Signed-off-by: Matt Carlson
    Signed-off-by: Benjamin Li
    Signed-off-by: David S. Miller

    Michael Chan
     

12 Nov, 2008

25 commits

  • Using read_pnet() and write_pnet() in neighbour code ease the reading
    of code.

    Signed-off-by: Eric Dumazet
    Signed-off-by: David S. Miller

    Eric Dumazet
     
  • We can shrink size of "struct inet_bind_bucket" by 50%, using
    read_pnet() and write_pnet()

    Signed-off-by: Eric Dumazet
    Signed-off-by: David S. Miller

    Eric Dumazet
     
  • This patch introduces two helpers that deal with reading and writing
    struct net pointers in various network structures.

    Their implementation depends on CONFIG_NET_NS

    For symmetry, both functions work with "struct net **pnet".

    Their usage should reduce the number of #ifdef CONFIG_NET_NS,
    without adding many helpers for each network structure
    that hold a "struct net *pointer"

    Signed-off-by: Eric Dumazet
    Signed-off-by: David S. Miller

    Eric Dumazet
     
  • This provides a missing link in the code chain, as several features implicitly
    depend and/or rely on the choice of CCID. Most notably, this is the Send Ack Vector
    feature, but also Ack Ratio and Send Loss Event Rate (also taken care of).

    For Send Ack Vector, the situation is as follows:
    * since CCID2 mandates the use of Ack Vectors, there is no point in allowing
    endpoints which use CCID2 to disable Ack Vector features such a connection;

    * a peer with a TX CCID of CCID2 will always expect Ack Vectors, and a peer
    with a RX CCID of CCID2 must always send Ack Vectors (RFC 4341, sec. 4);

    * for all other CCIDs, the use of (Send) Ack Vector is optional and thus
    negotiable. However, this implies that the code negotiating the use of Ack
    Vectors also supports it (i.e. is able to supply and to either parse or
    ignore received Ack Vectors). Since this is not the case (CCID-3 has no Ack
    Vector support), the use of Ack Vectors is here disabled, with a comment
    in the source code.

    An analogous consideration arises for the Send Loss Event Rate feature,
    since the CCID-3 implementation does not support the loss interval options
    of RFC 4342. To make such use explicit, corresponding feature-negotiation
    options are inserted which signal the use of the loss event rate option,
    as it is used by the CCID3 code.

    Lastly, the values of the Ack Ratio feature are matched to the choice of CCID.

    The patch implements this as a function which is called after the user has
    made all other registrations for changing default values of features.

    The table is variable-length, the reserved (and hence for feature-negotiation
    invalid, confirmed by considering section 19.4 of RFC 4340) feature number `0'
    is used to mark the end of the table.

    Signed-off-by: Gerrit Renker
    Acked-by: Ian McDonald
    Signed-off-by: David S. Miller

    Gerrit Renker
     
  • This provides a data structure to record which CCIDs are locally supported
    and three accessor functions:
    - a test function for internal use which is used to validate CCID requests
    made by the user;
    - a copy function so that the list can be used for feature-negotiation;
    - documented getsockopt() support so that the user can query capabilities.

    The data structure is a table which is filled in at compile-time with the
    list of available CCIDs (which in turn depends on the Kconfig choices).

    Using the copy function for cloning the list of supported CCIDs is useful for
    feature negotiation, since the negotiation is now with the full list of available
    CCIDs (e.g. {2, 3}) instead of the default value {2}. This means negotiation
    will not fail if the peer requests to use CCID3 instead of CCID2.

    Signed-off-by: Gerrit Renker
    Acked-by: Ian McDonald
    Signed-off-by: David S. Miller

    Gerrit Renker
     
  • Two registration routines, for SP and NN features, are provided by this patch,
    replacing a previous routine which was used for both feature types.

    These are internal-only routines and therefore start with `__feat_register'.

    It further exports the known limits of Sequence Window and Ack Ratio as symbolic
    constants.

    Signed-off-by: Gerrit Renker
    Acked-by: Ian McDonald
    Signed-off-by: David S. Miller

    Gerrit Renker
     
  • This patch limits feature (capability) negotation to the connection setup phase:

    1. Although it is theoretically possible to perform feature negotiation at any
    time (and RFC 4340 supports this), in practice this is prohibitively complex,
    as it requires to put traffic on hold for each new negotiation.
    2. As a byproduct of restricting feature negotiation to connection setup, the
    feature-negotiation retransmit timer is no longer required. This part is now
    mapped onto the protocol-level retransmission.
    Details indicating why timers are no longer needed can be found on
    http://www.erg.abdn.ac.uk/users/gerrit/dccp/notes/feature_negotiation/\
    implementation_notes.html

    This patch disables anytime negotiation, subsequent patches work out full
    feature negotiation support for connection setup.

    Signed-off-by: Gerrit Renker
    Signed-off-by: David S. Miller

    Gerrit Renker
     
  • Unused after kmem_cache_zalloc() conversion.

    Signed-off-by: Alexey Dobriyan
    Signed-off-by: David S. Miller

    Alexey Dobriyan
     
  • ->pde isn't actually needed, since name is stashed in ->id.

    Signed-off-by: Alexey Dobriyan
    Signed-off-by: David S. Miller

    Alexey Dobriyan
     
  • Conflicts:

    drivers/message/fusion/mptlan.c
    drivers/net/sfc/ethtool.c
    net/mac80211/debugfs_sta.c

    David S. Miller
     
  • David S. Miller
     
  • …el/git/tip/linux-2.6-tip

    * 'timers-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
    timers: handle HRTIMER_CB_IRQSAFE_UNLOCKED correctly from softirq context
    nohz: disable tick_nohz_kick_tick() for now
    irq: call __irq_enter() before calling the tick_idle_check
    x86: HPET: enter hpet_interrupt_handler with interrupts disabled
    x86: HPET: read from HPET_Tn_CMP() not HPET_T0_CMP
    x86: HPET: convert WARN_ON to WARN_ON_ONCE

    Linus Torvalds
     
  • …l/git/tip/linux-2.6-tip

    * 'sched-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
    sched: release buddies on yield
    fix for account_group_exec_runtime(), make sure ->signal can't be freed under rq->lock
    sched: clean up debug info

    Linus Torvalds
     
  • …nel/git/tip/linux-2.6-tip

    * 'tracing-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
    ring-buffer: prevent infinite looping on time stamping
    ftrace: disable tracing on resize
    ftrace: fix breakage in bin_fmt results
    ftrace: ftrace.txt version update
    ftrace: update txt document

    Linus Torvalds
     
  • Signed-off-by: Sujith
    Signed-off-by: John W. Linville

    Sujith
     
  • * 'for-linus' of git://oss.sgi.com/xfs/xfs:
    [XFS] XFS: Check for valid transaction headers in recovery
    [XFS] handle memory allocation failures during log initialisation
    [XFS] Account for allocated blocks when expanding directories
    [XFS] Wait for all I/O on truncate to zero file size
    [XFS] Fix use-after-free with log and quotas

    Linus Torvalds
     
  • * 'upstream-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mfasheh/ocfs2: (21 commits)
    ocfs2: Check search result in ocfs2_xattr_block_get()
    ocfs2: fix printk related build warnings in xattr.c
    ocfs2: truncate outstanding block after direct io failure
    ocfs2/xattr: Proper hash collision handle in bucket division
    ocfs2: return 0 in page_mkwrite to let VFS retry.
    ocfs2: Set journal descriptor to NULL after journal shutdown
    ocfs2: Fix check of return value of ocfs2_start_trans() in xattr.c.
    ocfs2: Let inode be really deleted when ocfs2_mknod_locked() fails
    ocfs2: Fix checking of return value of new_inode()
    ocfs2: Fix check of return value of ocfs2_start_trans()
    ocfs2: Fix some typos in xattr annotations.
    ocfs2: Remove unused ocfs2_restore_xattr_block().
    ocfs2: Don't repeat ocfs2_xattr_block_find()
    ocfs2: Specify appropriate journal access for new xattr buckets.
    ocfs2: Check errors from ocfs2_xattr_update_xattr_search()
    ocfs2: Don't return -EFAULT from a corrupt xattr entry.
    ocfs2: Check xattr block signatures properly.
    ocfs2: add handler_map array bounds checking
    ocfs2: remove duplicate definition in xattr
    ocfs2: fix function declaration and definition in xattr
    ...

    Linus Torvalds
     
  • Signed-off-by: Alan Cox
    Signed-off-by: Linus Torvalds

    Alan Cox
     
  • Signed-off-by: Alan Cox
    Signed-off-by: Linus Torvalds

    Alan Cox
     
  • * 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6: (35 commits)
    V4L/DVB (9516): cx18: Move DVB buffer transfer handling from irq handler to work_queue
    V4L/DVB (9557): gspca: Small changes for the sensor HV7131B in zc3xx.
    V4L/DVB (9556): gspca: Bad init sequence for sensor HV7131B in zc3xx.
    V4L/DVB (9549): gspca: Fix a typo in one of gspca chips name.
    V4L/DVB (9515): cx18: Use correct Mailbox IRQ Ack values and misc IRQ handling cleanup
    V4L/DVB (9493): kconfig patch
    V4L/DVB (9527): af9015: fix compile warnings
    V4L/DVB (9524): af9013: fix bug in status reading
    V4L/DVB (9511): cx18: Mark CX18_CPU_DE_RELEASE_MDL as a slow API call
    V4L/DVB (9510): cx18: Fix write retries for registers that always change - part 2.
    V4L/DVB (9506): ivtv/cx18: fix test whether modules should be loaded or not.
    V4L/DVB (9499): cx88-mpeg: final fix for analogue only compilation + de-alloc fix
    V4L/DVB (9496): cx88-blackbird: bugfix: cx88-blackbird-mpeg-users
    V4L/DVB (9495): cx88-blackbird: bugfix: cx88-blackbird-poll-fix
    V4L/DVB (9494): anysee: initialize anysee_usb_mutex statically
    V4L/DVB (9492): unplug oops from dvb_frontend_init...
    V4L/DVB (9486): ivtv/ivtvfb: no longer experimental
    V4L/DVB (9485): ivtv: remove incorrect V4L1 & tvaudio dependency
    V4L/DVB (9482): Documentation, especially regarding audio and informational links
    V4L/DVB (9475): cx18: Disable write retries for registers that always change - part 1.
    ...

    Linus Torvalds
     
  • * 'merge' of git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc:
    powerpc: Update desktop/server defconfigs
    powerpc: Fix msr check in compat_sys_swapcontext
    powerpc: Repair device bindings documentation
    powerpc: Updated Freescale PPC related defconfigs
    powerpc: Update QE/CPM2 usb_ctlr structures for USB support
    powerpc/86xx: Correct SOC bus-frequency in GE Fanuc SBC610 DTS
    powerpc: Fix Book-E watchdog timer interval setting
    powerpc/fsl-booke: Fix synchronization bug w/local tlb invalidates

    Linus Torvalds
     
  • * 'drm-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6:
    drm/i915: Move legacy breadcrumb out of the reserved status page area
    drm/i915: Filter pci devices based on PCI_CLASS_DISPLAY_VGA
    drm/radeon: map registers at load time
    drm: Remove infrastructure for supporting i915's vblank swapping.
    i915: Remove racy delayed vblank swap ioctl.
    i915: Don't whine when pci_enable_msi() fails.
    i915: Don't attempt to short-circuit object_wait_rendering by checking domains.
    i915: Clean up sarea pointers on leavevt
    i915: Save/restore MCHBAR_RENDER_STANDBY on GM965/GM45

    Linus Torvalds
     
  • * 'upstream-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev:
    libata: fix last_reset timestamp handling
    libata: Avoid overflow in ata_tf_read_block() when tf->hba_lbal > 127
    [libata] pata_pcmcia: another memory card support
    [libata] pata_sch: notice attached slave devices
    [libata] pata_cs553*.c: cleanup kernel-doc

    Linus Torvalds
     
  • * git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6:
    sparc64: Update defconfig.
    Revert "sparc: correct section of current_pc()"

    Linus Torvalds
     
  • * git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6:
    dsa: fix master interface allmulti/promisc handling
    dsa: fix skb->pkt_type when mac address of slave interface differs
    net: fix setting of skb->tail in skb_recycle_check()
    net: fix /proc/net/snmp as memory corruptor
    mac80211: fix a buffer overrun in station debug code
    netfilter: payload_len is be16, add size of struct rather than size of pointer
    ipv6: fix ip6_mr_init error path
    [4/4] dca: fixup initialization dependency
    [3/4] I/OAT: fix async_tx.callback checking
    [2/4] I/OAT: fix dma_pin_iovec_pages() error handling
    [1/4] I/OAT: fix channel resources free for not allocated channels
    ssb: Fix DMA-API compilation for non-PCI systems
    SSB: hide empty sub menu
    vlan: Fix typos in proc output string
    [netdrvr] usb/hso: Cleanup rfkill error handling
    sfc: Correct address of gPXE boot configuration in EEPROM
    el3_common_init() should be __devinit, not __init
    hso: rfkill type should be WWAN
    mlx4_en: Start port error flow bug fix
    af_key: mark policy as dead before destroying

    Linus Torvalds
     

11 Nov, 2008

5 commits