type stringclasses 2
values | api_name stringlengths 4 44 | file stringlengths 8 70 | commit stringlengths 40 40 | old_signature stringlengths 14 4.12k ⌀ | new_signature stringlengths 19 4.19k ⌀ | change_type stringclasses 5
values |
|---|---|---|---|---|---|---|
function_signature_change | ipa_smp2p_init | drivers/net/ipa/ipa_smp2p.h | 81d65f3413da3fe8158ac3ead6270035db1c0dde | int ipa_smp2p_init(struct ipa *ipa, bool modem_init) | int ipa_smp2p_init(struct ipa *ipa, struct platform_device *pdev,
bool modem_init) | param_added |
function_signature_change | ipa_smp2p_irq_init | drivers/net/ipa/ipa_smp2p.c | 59622a8fb45350bf8028c350dd20958fa8a77279 | static int ipa_smp2p_irq_init(struct ipa_smp2p *smp2p, const char *name,
irq_handler_t handler) | static int ipa_smp2p_irq_init(struct ipa_smp2p *smp2p,
struct platform_device *pdev,
const char *name, irq_handler_t handler) | param_added |
function_signature_change | ipa_mem_init | drivers/net/ipa/ipa_mem.c | 95c54a963b2445096adf5c92c8e30160f2cb1d8d | int ipa_mem_init(struct ipa *ipa, const struct ipa_mem_data *mem_data) | int ipa_mem_init(struct ipa *ipa, struct platform_device *pdev,
const struct ipa_mem_data *mem_data) | param_added |
function_signature_change | ipa_mem_init | drivers/net/ipa/ipa_mem.h | 95c54a963b2445096adf5c92c8e30160f2cb1d8d | int ipa_mem_init(struct ipa *ipa, const struct ipa_mem_data *mem_data) | int ipa_mem_init(struct ipa *ipa, struct platform_device *pdev,
const struct ipa_mem_data *mem_data) | param_added |
function_signature_change | ipa_reg_init | drivers/net/ipa/ipa_reg.c | a47956e72a3e724f88c696944d197f7bf8442273 | int ipa_reg_init(struct ipa *ipa) | int ipa_reg_init(struct ipa *ipa, struct platform_device *pdev) | param_added |
function_signature_change | ipa_reg_init | drivers/net/ipa/ipa_reg.h | a47956e72a3e724f88c696944d197f7bf8442273 | int ipa_reg_init(struct ipa *ipa) | int ipa_reg_init(struct ipa *ipa, struct platform_device *pdev) | param_added |
function_signature_change | ipa_interrupt_deconfig | drivers/net/ipa/ipa_interrupt.c | e87e4371edfc369dcc6abbabc3f276d4e0260513 | void ipa_interrupt_deconfig(struct ipa_interrupt *interrupt) | void ipa_interrupt_deconfig(struct ipa *ipa) | param_type_changed |
function_signature_change | ipa_interrupt_config | drivers/net/ipa/ipa_interrupt.h | e87e4371edfc369dcc6abbabc3f276d4e0260513 | struct ipa_interrupt *ipa_interrupt_config(struct ipa *ipa) | int ipa_interrupt_config(struct ipa *ipa) | return_type_changed |
function_signature_change | ipa_interrupt_deconfig | drivers/net/ipa/ipa_interrupt.h | e87e4371edfc369dcc6abbabc3f276d4e0260513 | void ipa_interrupt_deconfig(struct ipa_interrupt *interrupt) | void ipa_interrupt_deconfig(struct ipa *ipa) | param_type_changed |
function_signature_change | rdmsr_on_cpus | arch/x86/include/asm/msr.h | 5323922f50ecdf9d10cdd2fabd06507e5b4f3feb | void rdmsr_on_cpus(const struct cpumask *mask, u32 msr_no, struct msr *msrs) | void rdmsr_on_cpus(const struct cpumask *mask, u32 msr_no, struct msr __percpu *msrs) | param_type_changed |
function_signature_change | wrmsr_on_cpus | arch/x86/include/asm/msr.h | 5323922f50ecdf9d10cdd2fabd06507e5b4f3feb | void wrmsr_on_cpus(const struct cpumask *mask, u32 msr_no, struct msr *msrs) | void wrmsr_on_cpus(const struct cpumask *mask, u32 msr_no, struct msr __percpu *msrs) | param_type_changed |
function_signature_change | msrs_alloc | arch/x86/include/asm/msr.h | 5323922f50ecdf9d10cdd2fabd06507e5b4f3feb | struct msr *msrs_alloc(void) | struct msr __percpu *msrs_alloc(void) | return_type_changed |
function_signature_change | msrs_free | arch/x86/include/asm/msr.h | 5323922f50ecdf9d10cdd2fabd06507e5b4f3feb | void msrs_free(struct msr *msrs) | void msrs_free(struct msr __percpu *msrs) | param_type_changed |
function_signature_change | __rwmsr_on_cpus | arch/x86/lib/msr-smp.c | 5323922f50ecdf9d10cdd2fabd06507e5b4f3feb | static void __rwmsr_on_cpus(const struct cpumask *mask, u32 msr_no,
struct msr *msrs,
void (*msr_func) (void *info)) | static void __rwmsr_on_cpus(const struct cpumask *mask, u32 msr_no,
struct msr __percpu *msrs,
void (*msr_func) (void *info)) | param_type_changed |
function_signature_change | rdmsr_on_cpus | arch/x86/lib/msr-smp.c | 5323922f50ecdf9d10cdd2fabd06507e5b4f3feb | void rdmsr_on_cpus(const struct cpumask *mask, u32 msr_no, struct msr *msrs) | void rdmsr_on_cpus(const struct cpumask *mask, u32 msr_no, struct msr __percpu *msrs) | param_type_changed |
function_signature_change | wrmsr_on_cpus | arch/x86/lib/msr-smp.c | 5323922f50ecdf9d10cdd2fabd06507e5b4f3feb | void wrmsr_on_cpus(const struct cpumask *mask, u32 msr_no, struct msr *msrs) | void wrmsr_on_cpus(const struct cpumask *mask, u32 msr_no, struct msr __percpu *msrs) | param_type_changed |
function_signature_change | msrs_free | arch/x86/lib/msr.c | 5323922f50ecdf9d10cdd2fabd06507e5b4f3feb | void msrs_free(struct msr *msrs) | void msrs_free(struct msr __percpu *msrs) | param_type_changed |
struct_layout_change | igc_q_vector | drivers/net/ethernet/intel/igc/igc.h | c2a22688c931ae965daa15691e902f9cf3069f5f | null | null | fields_modified |
function_signature_change | gve_rx_dqo | drivers/net/ethernet/google/gve/gve_rx_dqo.c | 5e37d8254e7f551dda62e7590e819d69c7491845 | static int gve_rx_dqo(struct napi_struct *napi, struct gve_rx_ring *rx,
const struct gve_rx_compl_desc_dqo *compl_desc,
int queue_idx) | static int gve_rx_dqo(struct napi_struct *napi, struct gve_rx_ring *rx,
const struct gve_rx_compl_desc_dqo *compl_desc,
u32 desc_idx, int queue_idx) | param_added |
function_signature_change | gve_parse_device_option | drivers/net/ethernet/google/gve/gve_adminq.c | 0b43cf527d1d6b75597b0f6c40a60a8b67837afe | static
void gve_parse_device_option(struct gve_priv *priv,
struct gve_device_descriptor *device_descriptor,
struct gve_device_option *option,
struct gve_device_option_gqi_rda **dev_op_gqi_rda,
struct gve_device_option_gqi_qpl **dev_op_gqi_qpl,
struct gve_device_option_dqo_rda **dev_op_dqo_rda,
struct gve_device_option_jumbo_frames **dev_op_jumbo_frames,
struct gve_device_option_dqo_qpl **dev_op_dqo_qpl) | static
void gve_parse_device_option(struct gve_priv *priv,
struct gve_device_descriptor *device_descriptor,
struct gve_device_option *option,
struct gve_device_option_gqi_rda **dev_op_gqi_rda,
struct gve_device_option_gqi_qpl **dev_op_gqi_qpl,
struct gve_device_option_dqo_rda **dev_op_dqo_rda,
struct gve_device_option_jumbo_frames **dev_op_jumbo_frames,
struct gve_device_option_dqo_qpl **dev_op_dqo_qpl,
struct gve_device_option_buffer_sizes **dev_op_buffer_sizes) | param_added |
function_signature_change | gve_process_device_options | drivers/net/ethernet/google/gve/gve_adminq.c | 0b43cf527d1d6b75597b0f6c40a60a8b67837afe | static int
gve_process_device_options(struct gve_priv *priv,
struct gve_device_descriptor *descriptor,
struct gve_device_option_gqi_rda **dev_op_gqi_rda,
struct gve_device_option_gqi_qpl **dev_op_gqi_qpl,
struct gve_device_option_dqo_rda **dev_op_dqo_rda,
struct gve_device_option_jumbo_frames **dev_op_jumbo_frames,
struct gve_device_option_dqo_qpl **dev_op_dqo_qpl) | static int
gve_process_device_options(struct gve_priv *priv,
struct gve_device_descriptor *descriptor,
struct gve_device_option_gqi_rda **dev_op_gqi_rda,
struct gve_device_option_gqi_qpl **dev_op_gqi_qpl,
struct gve_device_option_dqo_rda **dev_op_dqo_rda,
struct gve_device_option_jumbo_frames **dev_op_jumbo_frames,
struct gve_device_option_dqo_qpl **dev_op_dqo_qpl,
struct gve_device_option_buffer_sizes **dev_op_buffer_sizes) | param_added |
function_signature_change | gve_enable_supported_features | drivers/net/ethernet/google/gve/gve_adminq.c | 0b43cf527d1d6b75597b0f6c40a60a8b67837afe | static void gve_enable_supported_features(struct gve_priv *priv,
u32 supported_features_mask,
const struct gve_device_option_jumbo_frames
*dev_op_jumbo_frames,
const struct gve_device_option_dqo_qpl
*dev_op_dqo_qpl) | static void gve_enable_supported_features(struct gve_priv *priv,
u32 supported_features_mask,
const struct gve_device_option_jumbo_frames
*dev_op_jumbo_frames,
const struct gve_device_option_dqo_qpl
*dev_op_dqo_qpl,
const struct gve_device_option_buffer_sizes
*dev_op_buffer_sizes) | param_added |
function_signature_change | msm_dp_modeset_init | drivers/gpu/drm/msm/dp/dp_display.c | ee2fcc0f514b14e31c5d7d5991fb3ea9395be472 | int msm_dp_modeset_init(struct msm_dp *dp_display, struct drm_device *dev,
struct drm_encoder *encoder) | int msm_dp_modeset_init(struct msm_dp *dp_display, struct drm_device *dev,
struct drm_encoder *encoder, bool yuv_supported) | param_added |
function_signature_change | dp_drm_connector_init | drivers/gpu/drm/msm/dp/dp_drm.h | ee2fcc0f514b14e31c5d7d5991fb3ea9395be472 | struct drm_connector *dp_drm_connector_init(struct msm_dp *dp_display, struct drm_encoder *encoder) | struct drm_connector *dp_drm_connector_init(struct msm_dp *dp_display, struct drm_encoder *encoder,
bool yuv_supported) | param_added |
function_signature_change | msm_dp_modeset_init | drivers/gpu/drm/msm/msm_drv.h | ee2fcc0f514b14e31c5d7d5991fb3ea9395be472 | int msm_dp_modeset_init(struct msm_dp *dp_display, struct drm_device *dev,
struct drm_encoder *encoder) | int msm_dp_modeset_init(struct msm_dp *dp_display, struct drm_device *dev,
struct drm_encoder *encoder, bool yuv_supported) | param_added |
function_signature_change | ionic_xdp_post_frame | drivers/net/ethernet/pensando/ionic/ionic_txrx.c | 1937b7ab6bd6bd4cee631fa6ea9142bb4dabc898 | static int ionic_xdp_post_frame(struct net_device *netdev,
struct ionic_queue *q, struct xdp_frame *frame,
enum xdp_action act, struct page *page, int off,
bool ring_doorbell) | static int ionic_xdp_post_frame(struct ionic_queue *q, struct xdp_frame *frame,
enum xdp_action act, struct page *page, int off,
bool ring_doorbell) | param_removed |
function_signature_change | ionic_tx_tso_post | drivers/net/ethernet/pensando/ionic/ionic_txrx.c | 1937b7ab6bd6bd4cee631fa6ea9142bb4dabc898 | static void ionic_tx_tso_post(struct ionic_queue *q,
struct ionic_desc_info *desc_info,
struct sk_buff *skb,
dma_addr_t addr, u8 nsge, u16 len,
unsigned int hdrlen, unsigned int mss,
bool outer_csum,
u16 vlan_tci, bool has_vlan,
bool start, bool done) | static void ionic_tx_tso_post(struct net_device *netdev, struct ionic_queue *q,
struct ionic_desc_info *desc_info,
struct sk_buff *skb,
dma_addr_t addr, u8 nsge, u16 len,
unsigned int hdrlen, unsigned int mss,
bool outer_csum,
u16 vlan_tci, bool has_vlan,
bool start, bool done) | param_added |
function_signature_change | ionic_tx_tso | drivers/net/ethernet/pensando/ionic/ionic_txrx.c | 1937b7ab6bd6bd4cee631fa6ea9142bb4dabc898 | static int ionic_tx_tso(struct ionic_queue *q, struct sk_buff *skb) | static int ionic_tx_tso(struct net_device *netdev, struct ionic_queue *q,
struct sk_buff *skb) | param_added |
function_signature_change | ionic_tx | drivers/net/ethernet/pensando/ionic/ionic_txrx.c | 1937b7ab6bd6bd4cee631fa6ea9142bb4dabc898 | static int ionic_tx(struct ionic_queue *q, struct sk_buff *skb) | static int ionic_tx(struct net_device *netdev, struct ionic_queue *q,
struct sk_buff *skb) | param_added |
function_signature_change | ionic_tx_service | drivers/net/ethernet/pensando/ionic/ionic_txrx.c | bc581273fead93ccc918b8c9a5b8a9f60b1ee836 | static bool ionic_tx_service(struct ionic_cq *cq, struct ionic_cq_info *cq_info) | static bool ionic_tx_service(struct ionic_cq *cq, struct ionic_cq_info *cq_info,
unsigned int *total_pkts, unsigned int *total_bytes) | param_added |
function_signature_change | ionic_tx_service | drivers/net/ethernet/pensando/ionic/ionic_txrx.c | 061b9bedbef124ab28682496bdba7f265f13b2f3 | bool ionic_tx_service(struct ionic_cq *cq, struct ionic_cq_info *cq_info) | static bool ionic_tx_service(struct ionic_cq *cq, struct ionic_cq_info *cq_info) | return_type_changed |
function_signature_change | dp_catalog_ctrl_config_msa | drivers/gpu/drm/msm/dp/dp_catalog.c | 6db6e5606576c96bbb8fb1bb40aa46118af8f724 | void dp_catalog_ctrl_config_msa(struct dp_catalog *dp_catalog,
u32 rate, u32 stream_rate_khz,
bool fixed_nvid) | void dp_catalog_ctrl_config_msa(struct dp_catalog *dp_catalog,
u32 rate, u32 stream_rate_khz,
bool fixed_nvid, bool is_ycbcr_420) | param_added |
function_signature_change | dp_catalog_ctrl_config_msa | drivers/gpu/drm/msm/dp/dp_catalog.h | 6db6e5606576c96bbb8fb1bb40aa46118af8f724 | void dp_catalog_ctrl_config_msa(struct dp_catalog *dp_catalog, u32 rate,
u32 stream_rate_khz, bool fixed_nvid) | void dp_catalog_ctrl_config_msa(struct dp_catalog *dp_catalog, u32 rate,
u32 stream_rate_khz, bool fixed_nvid, bool is_ycbcr_420) | param_added |
struct_layout_change | dpu_encoder_phys_wb | drivers/gpu/drm/msm/disp/dpu1/dpu_encoder_phys.h | 7cde7ce5be3e0344d70a5ef8d27190b0a24aa6a0 | null | null | fields_modified |
function_signature_change | dpu_encoder_helper_phys_setup_cdm | drivers/gpu/drm/msm/disp/dpu1/dpu_encoder_phys_wb.c | 7cde7ce5be3e0344d70a5ef8d27190b0a24aa6a0 | static void dpu_encoder_helper_phys_setup_cdm(struct dpu_encoder_phys *phys_enc) | static void dpu_encoder_helper_phys_setup_cdm(struct dpu_encoder_phys *phys_enc,
const struct dpu_format *dpu_fmt,
u32 output_type) | param_added |
function_signature_change | imx6_pcie_init_phy | drivers/pci/controller/dwc/pci-imx6.c | 21ad80b0e0ce5f2b6d17e11bc823e8e0a1527555 | static void imx6_pcie_init_phy(struct imx6_pcie *imx6_pcie) | static int imx6_pcie_init_phy(struct imx6_pcie *imx6_pcie) | return_type_changed |
function_signature_change | task__print_level | tools/perf/builtin-report.c | 2f1e20feb9944d0dd50906819227e99e1a26f78c | static void task__print_level(struct task *task, FILE *fp, int level) | static void task__print_level(struct machine *machine, struct thread *thread, FILE *fp) | param_type_changed |
function_signature_change | rxrpc_fill_out_ack | net/rxrpc/output.c | 8985f2b09b3303b935b9ab4814d801251f0c7c22 | static void rxrpc_fill_out_ack(struct rxrpc_connection *conn,
struct rxrpc_call *call,
struct rxrpc_txbuf *txb,
u16 *_rwind) | static void rxrpc_fill_out_ack(struct rxrpc_call *call,
struct rxrpc_txbuf *txb,
u8 ack_reason,
rxrpc_serial_t serial) | param_type_changed |
struct_layout_change | hns_roce_ib_create_qp | include/uapi/rdma/hns-abi.h | 6ec429d5887a41b2dc8d92e391552f5604085cc2 | null | null | fields_modified |
struct_layout_change | hns_roce_ib_alloc_ucontext_resp | include/uapi/rdma/hns-abi.h | 6ec429d5887a41b2dc8d92e391552f5604085cc2 | null | null | fields_modified |
function_signature_change | of_machine_is_compatible | include/linux/of.h | 1ac8205f907517a306b661212496fedce79d7cc5 | extern bool of_machine_is_compatible(const char *compat) | static inline int of_machine_is_compatible(const char *compat) | return_type_changed |
function_signature_change | of_machine_is_compatible | drivers/of/base.c | cefdb366dcbe97908b6055595a15bf7689556bf8 | int of_machine_is_compatible(const char *compat) | bool of_machine_is_compatible(const char *compat) | return_type_changed |
function_signature_change | of_machine_is_compatible | include/linux/of.h | cefdb366dcbe97908b6055595a15bf7689556bf8 | extern int of_machine_is_compatible(const char *compat) | extern bool of_machine_is_compatible(const char *compat) | return_type_changed |
function_signature_change | bsc913x_qds_pic_init | arch/powerpc/platforms/85xx/bsc913x_qds.c | 3f9f3557aca2bc5335747f0ac613661fb573be54 | void __init bsc913x_qds_pic_init(void) | static void __init bsc913x_qds_pic_init(void) | return_type_changed |
function_signature_change | bsc913x_rdb_pic_init | arch/powerpc/platforms/85xx/bsc913x_rdb.c | 3f9f3557aca2bc5335747f0ac613661fb573be54 | void __init bsc913x_rdb_pic_init(void) | static void __init bsc913x_rdb_pic_init(void) | return_type_changed |
function_signature_change | ge_imp3a_pic_init | arch/powerpc/platforms/85xx/ge_imp3a.c | 3f9f3557aca2bc5335747f0ac613661fb573be54 | void __init ge_imp3a_pic_init(void) | static void __init ge_imp3a_pic_init(void) | return_type_changed |
function_signature_change | hash__kernel_map_pages | arch/powerpc/mm/book3s64/hash_utils.c | 9cbacb834b4afcb55eb8ac5115fa82fc7ede5c83 | void hash__kernel_map_pages(struct page *page, int numpages, int enable) | int hash__kernel_map_pages(struct page *page, int numpages, int enable) | return_type_changed |
function_signature_change | hash__kernel_map_pages | arch/powerpc/mm/mmu_decl.h | 9cbacb834b4afcb55eb8ac5115fa82fc7ede5c83 | void hash__kernel_map_pages(struct page *page, int numpages, int enable) | int hash__kernel_map_pages(struct page *page, int numpages, int enable) | return_type_changed |
function_signature_change | nmk_gpio_populate_chip | include/linux/gpio/gpio-nomadik.h | caddc92c57451d983c7e31e60b961c5aae4ece63 | struct nmk_gpio_chip *nmk_gpio_populate_chip(struct device_node *np,
struct platform_device *pdev) | struct nmk_gpio_chip *nmk_gpio_populate_chip(struct fwnode_handle *fwnode,
struct platform_device *pdev) | return_type_changed |
function_signature_change | push_rx | drivers/tty/serial/pch_uart.c | 09b8ff269401b2064afb5df42529bc18f6ad7d76 | static int push_rx(struct eg20t_port *priv, const unsigned char *buf,
int size) | static void push_rx(struct eg20t_port *priv, const unsigned char *buf,
int size) | return_type_changed |
function_signature_change | exar_suspend | drivers/tty/serial/8250/8250_exar.c | 82f9cefadac4e7e360bb1b4266c2e2d35a862425 | static int __maybe_unused exar_suspend(struct device *dev) | static int exar_suspend(struct device *dev) | return_type_changed |
function_signature_change | exar_resume | drivers/tty/serial/8250/8250_exar.c | 82f9cefadac4e7e360bb1b4266c2e2d35a862425 | static int __maybe_unused exar_resume(struct device *dev) | static int exar_resume(struct device *dev) | return_type_changed |
function_signature_change | path_from_stashed | fs/internal.h | e9c5263ce16d96311c118111ac779f004be8b473 | int path_from_stashed(struct dentry **stashed, unsigned long ino,
struct vfsmount *mnt, const struct file_operations *fops,
const struct inode_operations *iops, void *data,
struct path *path) | int path_from_stashed(struct dentry **stashed, unsigned long ino,
struct vfsmount *mnt, void *data, struct path *path) | param_removed |
function_signature_change | path_from_stashed | fs/libfs.c | e9c5263ce16d96311c118111ac779f004be8b473 | int path_from_stashed(struct dentry **stashed, unsigned long ino,
struct vfsmount *mnt, const struct file_operations *fops,
const struct inode_operations *iops, void *data,
struct path *path) | int path_from_stashed(struct dentry **stashed, unsigned long ino,
struct vfsmount *mnt, void *data, struct path *path) | param_removed |
function_signature_change | uds_init_cond | drivers/md/dm-vdo/thread-utils.h | 877f36b76485d1e0dab5a9de8a7175c66cc791e3 | int __must_check uds_init_cond(struct cond_var *cond) | static inline int __must_check uds_init_cond(struct cond_var *cv) | return_type_changed |
function_signature_change | uds_signal_cond | drivers/md/dm-vdo/thread-utils.h | 877f36b76485d1e0dab5a9de8a7175c66cc791e3 | int uds_signal_cond(struct cond_var *cond) | static inline void uds_signal_cond(struct cond_var *cv) | return_type_changed |
function_signature_change | uds_broadcast_cond | drivers/md/dm-vdo/thread-utils.h | 877f36b76485d1e0dab5a9de8a7175c66cc791e3 | int uds_broadcast_cond(struct cond_var *cond) | static inline void uds_broadcast_cond(struct cond_var *cv) | return_type_changed |
function_signature_change | uds_wait_cond | drivers/md/dm-vdo/thread-utils.h | 877f36b76485d1e0dab5a9de8a7175c66cc791e3 | int uds_wait_cond(struct cond_var *cond, struct mutex *mutex) | void uds_wait_cond(struct cond_var *cv, struct mutex *mutex) | return_type_changed |
function_signature_change | uds_destroy_cond | drivers/md/dm-vdo/thread-utils.h | 877f36b76485d1e0dab5a9de8a7175c66cc791e3 | int uds_destroy_cond(struct cond_var *cond) | static inline void uds_destroy_cond(struct cond_var *cv) | return_type_changed |
function_signature_change | nfsd_setattr | fs/nfsd/vfs.c | 24d92de9186ebc340687caf7356e1070773e67bc | __be32
nfsd_setattr(struct svc_rqst *rqstp, struct svc_fh *fhp,
struct nfsd_attrs *attr,
int check_guard, time64_t guardtime) | __be32
nfsd_setattr(struct svc_rqst *rqstp, struct svc_fh *fhp,
struct nfsd_attrs *attr, const struct timespec64 *guardtime) | param_removed |
function_signature_change | nfsd_setattr | fs/nfsd/vfs.h | 24d92de9186ebc340687caf7356e1070773e67bc | __be32 nfsd_setattr(struct svc_rqst *, struct svc_fh *,
struct nfsd_attrs *, int, time64_t) | __be32 nfsd_setattr(struct svc_rqst *, struct svc_fh *,
struct nfsd_attrs *, const struct timespec64 *) | param_removed |
function_signature_change | nfsd4_deleg_getattr_conflict | fs/nfsd/nfs4state.c | c5967721e1063648b0506481585ba7e2e49a075e | __be32
nfsd4_deleg_getattr_conflict(struct svc_rqst *rqstp, struct inode *inode) | __be32
nfsd4_deleg_getattr_conflict(struct svc_rqst *rqstp, struct inode *inode,
bool *modified, u64 *size) | param_added |
function_signature_change | nfsd4_deleg_getattr_conflict | fs/nfsd/state.h | c5967721e1063648b0506481585ba7e2e49a075e | extern __be32 nfsd4_deleg_getattr_conflict(struct svc_rqst *rqstp,
struct inode *inode) | extern __be32 nfsd4_deleg_getattr_conflict(struct svc_rqst *rqstp,
struct inode *inode, bool *file_modified, u64 *size) | param_added |
function_signature_change | svc_rdma_send_write_chunk | net/sunrpc/xprtrdma/svc_rdma_rw.c | d2727cefff0204c3074a10e3ad2e1b5c9dfb986c | int svc_rdma_send_write_chunk(struct svcxprt_rdma *rdma,
const struct svc_rdma_chunk *chunk,
const struct xdr_buf *xdr) | static int svc_rdma_send_write_chunk(struct svcxprt_rdma *rdma,
const struct svc_rdma_chunk *chunk,
const struct xdr_buf *xdr) | return_type_changed |
function_signature_change | svc_rdma_reply_chunk_release | net/sunrpc/xprtrdma/svc_rdma_rw.c | 10e6fc1054d900a205e5233f186ebce9c50e1d1d | static void svc_rdma_reply_chunk_release(struct svcxprt_rdma *rdma,
struct svc_rdma_chunk_ctxt *cc) | void svc_rdma_reply_chunk_release(struct svcxprt_rdma *rdma,
struct svc_rdma_send_ctxt *ctxt) | return_type_changed |
function_signature_change | svc_rdma_send_reply_chunk | include/linux/sunrpc/svc_rdma.h | a1f5788a0c250c87d3007d59d11a00ab98e66f01 | extern int svc_rdma_send_reply_chunk(struct svcxprt_rdma *rdma,
const struct svc_rdma_recv_ctxt *rctxt,
const struct xdr_buf *xdr) | extern int svc_rdma_send_reply_chunk(struct svcxprt_rdma *rdma,
const struct svc_rdma_recv_ctxt *rctxt,
struct svc_rdma_send_ctxt *sctxt,
const struct xdr_buf *xdr) | param_added |
function_signature_change | svc_rdma_send_reply_chunk | net/sunrpc/xprtrdma/svc_rdma_rw.c | a1f5788a0c250c87d3007d59d11a00ab98e66f01 | int svc_rdma_send_reply_chunk(struct svcxprt_rdma *rdma,
const struct svc_rdma_recv_ctxt *rctxt,
const struct xdr_buf *xdr) | int svc_rdma_send_reply_chunk(struct svcxprt_rdma *rdma,
const struct svc_rdma_recv_ctxt *rctxt,
struct svc_rdma_send_ctxt *sctxt,
const struct xdr_buf *xdr) | param_added |
function_signature_change | nfsd4_scsi_fence_client | fs/nfsd/blocklayout.c | 1e33e1414bec54a4feafa9e67e2617031be0afe2 | static void
nfsd4_scsi_fence_client(struct nfs4_layout_stateid *ls) | static void
nfsd4_scsi_fence_client(struct nfs4_layout_stateid *ls, struct nfsd_file *file) | param_added |
function_signature_change | nfsd4_cb_layout_fail | fs/nfsd/nfs4layouts.c | 1e33e1414bec54a4feafa9e67e2617031be0afe2 | static void
nfsd4_cb_layout_fail(struct nfs4_layout_stateid *ls) | static void
nfsd4_cb_layout_fail(struct nfs4_layout_stateid *ls, struct nfsd_file *file) | param_added |
function_signature_change | unhash_delegation_locked | fs/nfsd/nfs4state.c | 3f29cc82a84c23cfd12b903029dd26002ca825f5 | static bool
unhash_delegation_locked(struct nfs4_delegation *dp, unsigned char type) | static bool
unhash_delegation_locked(struct nfs4_delegation *dp, unsigned short statusmask) | param_type_changed |
function_signature_change | nfsd4_lookup_stateid | fs/nfsd/nfs4state.c | 3f29cc82a84c23cfd12b903029dd26002ca825f5 | __be32
nfsd4_lookup_stateid(struct nfsd4_compound_state *cstate,
stateid_t *stateid, unsigned char typemask,
struct nfs4_stid **s, struct nfsd_net *nn) | __be32
nfsd4_lookup_stateid(struct nfsd4_compound_state *cstate,
stateid_t *stateid,
unsigned short typemask, unsigned short statusmask,
struct nfs4_stid **s, struct nfsd_net *nn) | param_added |
function_signature_change | nfs4_preprocess_seqid_op | fs/nfsd/nfs4state.c | 3f29cc82a84c23cfd12b903029dd26002ca825f5 | static __be32
nfs4_preprocess_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
stateid_t *stateid, char typemask,
struct nfs4_ol_stateid **stpp,
struct nfsd_net *nn) | static __be32
nfs4_preprocess_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
stateid_t *stateid,
unsigned short typemask, unsigned short statusmask,
struct nfs4_ol_stateid **stpp,
struct nfsd_net *nn) | param_added |
function_signature_change | nfsd4_lookup_stateid | fs/nfsd/state.h | 3f29cc82a84c23cfd12b903029dd26002ca825f5 | __be32 nfsd4_lookup_stateid(struct nfsd4_compound_state *cstate,
stateid_t *stateid, unsigned char typemask,
struct nfs4_stid **s, struct nfsd_net *nn) | __be32 nfsd4_lookup_stateid(struct nfsd4_compound_state *cstate,
stateid_t *stateid, unsigned short typemask,
unsigned short statusmask,
struct nfs4_stid **s, struct nfsd_net *nn) | param_added |
function_signature_change | unhash_delegation_locked | fs/nfsd/nfs4state.c | 83e733161fde43e2f99cefa68e369944460fce39 | static bool
unhash_delegation_locked(struct nfs4_delegation *dp) | static bool
unhash_delegation_locked(struct nfs4_delegation *dp, unsigned char type) | param_added |
function_signature_change | nfsd4_mark_cb_down | fs/nfsd/nfs4callback.c | 627fb183024066f044de05987d84597fb90ce1ab | static void nfsd4_mark_cb_down(struct nfs4_client *clp, int reason) | static void nfsd4_mark_cb_down(struct nfs4_client *clp) | param_removed |
function_signature_change | nfsd4_mark_cb_fault | fs/nfsd/nfs4callback.c | 627fb183024066f044de05987d84597fb90ce1ab | static void nfsd4_mark_cb_fault(struct nfs4_client *, int reason) | static void nfsd4_mark_cb_fault(struct nfs4_client *clp) | param_removed |
function_signature_change | nfsd4_increment_op_stats | fs/nfsd/nfs4proc.c | 4b14885411f74b2b0ce0eb2b39d0fffe54e5ca0d | static inline void nfsd4_increment_op_stats(u32 opnum) | static inline void nfsd4_increment_op_stats(struct nfsd_net *nn, u32 opnum) | param_added |
function_signature_change | nfsd_stat_counters_init | fs/nfsd/stats.c | 4b14885411f74b2b0ce0eb2b39d0fffe54e5ca0d | int nfsd_stat_counters_init(void) | int nfsd_stat_counters_init(struct nfsd_net *nn) | param_type_changed |
function_signature_change | nfsd_stat_counters_destroy | fs/nfsd/stats.c | 4b14885411f74b2b0ce0eb2b39d0fffe54e5ca0d | void nfsd_stat_counters_destroy(void) | void nfsd_stat_counters_destroy(struct nfsd_net *nn) | param_type_changed |
function_signature_change | nfsd_stats_rc_hits_inc | fs/nfsd/stats.h | 4b14885411f74b2b0ce0eb2b39d0fffe54e5ca0d | static inline void nfsd_stats_rc_hits_inc(void) | static inline void nfsd_stats_rc_hits_inc(struct nfsd_net *nn) | param_type_changed |
function_signature_change | nfsd_stats_rc_misses_inc | fs/nfsd/stats.h | 4b14885411f74b2b0ce0eb2b39d0fffe54e5ca0d | static inline void nfsd_stats_rc_misses_inc(void) | static inline void nfsd_stats_rc_misses_inc(struct nfsd_net *nn) | param_type_changed |
function_signature_change | nfsd_stats_rc_nocache_inc | fs/nfsd/stats.h | 4b14885411f74b2b0ce0eb2b39d0fffe54e5ca0d | static inline void nfsd_stats_rc_nocache_inc(void) | static inline void nfsd_stats_rc_nocache_inc(struct nfsd_net *nn) | param_type_changed |
function_signature_change | nfsd_stats_fh_stale_inc | fs/nfsd/stats.h | 4b14885411f74b2b0ce0eb2b39d0fffe54e5ca0d | static inline void nfsd_stats_fh_stale_inc(struct svc_export *exp) | static inline void nfsd_stats_fh_stale_inc(struct nfsd_net *nn,
struct svc_export *exp) | param_added |
function_signature_change | nfsd_stats_io_read_add | fs/nfsd/stats.h | 4b14885411f74b2b0ce0eb2b39d0fffe54e5ca0d | static inline void nfsd_stats_io_read_add(struct svc_export *exp, s64 amount) | static inline void nfsd_stats_io_read_add(struct nfsd_net *nn,
struct svc_export *exp, s64 amount) | param_added |
function_signature_change | nfsd_stats_io_write_add | fs/nfsd/stats.h | 4b14885411f74b2b0ce0eb2b39d0fffe54e5ca0d | static inline void nfsd_stats_io_write_add(struct svc_export *exp, s64 amount) | static inline void nfsd_stats_io_write_add(struct nfsd_net *nn,
struct svc_export *exp, s64 amount) | param_added |
function_signature_change | nfsd_stats_wdeleg_getattr_inc | fs/nfsd/stats.h | 4b14885411f74b2b0ce0eb2b39d0fffe54e5ca0d | static inline void nfsd_stats_wdeleg_getattr_inc(void) | static inline void nfsd_stats_wdeleg_getattr_inc(struct nfsd_net *nn) | param_type_changed |
function_signature_change | nfsd_stat_counters_init | fs/nfsd/stats.h | 4b14885411f74b2b0ce0eb2b39d0fffe54e5ca0d | int nfsd_stat_counters_init(void) | int nfsd_stat_counters_init(struct nfsd_net *nn) | param_type_changed |
function_signature_change | nfsd_stat_counters_destroy | fs/nfsd/stats.h | 4b14885411f74b2b0ce0eb2b39d0fffe54e5ca0d | void nfsd_stat_counters_destroy(void) | void nfsd_stat_counters_destroy(struct nfsd_net *nn) | param_type_changed |
function_signature_change | nfsd_stat_counters_init | fs/nfsd/stats.c | 93483ac5fec62cc1de166051b219d953bb5e4ef4 | static int nfsd_stat_counters_init(void) | int nfsd_stat_counters_init(void) | return_type_changed |
function_signature_change | nfsd_stat_counters_destroy | fs/nfsd/stats.c | 93483ac5fec62cc1de166051b219d953bb5e4ef4 | static void nfsd_stat_counters_destroy(void) | void nfsd_stat_counters_destroy(void) | return_type_changed |
function_signature_change | svc_create_pooled | include/linux/sunrpc/svc.h | f094323867668d50124886ad884b665de7319537 | struct svc_serv * svc_create_pooled(struct svc_program *, unsigned int,
int (*threadfn)(void *data)) | struct svc_serv * svc_create_pooled(struct svc_program *prog,
struct svc_stat *stats,
unsigned int bufsize,
int (*threadfn)(void *data)) | param_added |
function_signature_change | qnx4_fill_super | fs/qnx4/inode.c | 6b91bfa1651d841f0066bae2b1322cac29fdfb61 | static int qnx4_fill_super(struct super_block *s, void *data, int silent) | static int qnx4_fill_super(struct super_block *s, struct fs_context *fc) | param_removed |
function_signature_change | iommu_ops_from_fwnode | include/linux/iommu.h | 5896e6e39b86c1d820b3ccf5caea9aef40c2eacd | const struct iommu_ops *iommu_ops_from_fwnode(struct fwnode_handle *fwnode) | const struct iommu_ops *iommu_ops_from_fwnode(const struct fwnode_handle *fwnode) | return_type_changed |
function_signature_change | apple_dart_of_xlate | drivers/iommu/apple-dart.c | b42a905b6aad40c092cf17f4b295a4c389bc7206 | static int apple_dart_of_xlate(struct device *dev, struct of_phandle_args *args) | static int apple_dart_of_xlate(struct device *dev,
const struct of_phandle_args *args) | param_type_changed |
function_signature_change | arm_smmu_of_xlate | drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c | b42a905b6aad40c092cf17f4b295a4c389bc7206 | static int arm_smmu_of_xlate(struct device *dev, struct of_phandle_args *args) | static int arm_smmu_of_xlate(struct device *dev,
const struct of_phandle_args *args) | param_type_changed |
function_signature_change | arm_smmu_of_xlate | drivers/iommu/arm/arm-smmu/arm-smmu.c | b42a905b6aad40c092cf17f4b295a4c389bc7206 | static int arm_smmu_of_xlate(struct device *dev, struct of_phandle_args *args) | static int arm_smmu_of_xlate(struct device *dev,
const struct of_phandle_args *args) | param_type_changed |
function_signature_change | qcom_iommu_of_xlate | drivers/iommu/arm/arm-smmu/qcom_iommu.c | b42a905b6aad40c092cf17f4b295a4c389bc7206 | static int qcom_iommu_of_xlate(struct device *dev, struct of_phandle_args *args) | static int qcom_iommu_of_xlate(struct device *dev,
const struct of_phandle_args *args) | param_type_changed |
function_signature_change | exynos_iommu_of_xlate | drivers/iommu/exynos-iommu.c | b42a905b6aad40c092cf17f4b295a4c389bc7206 | static int exynos_iommu_of_xlate(struct device *dev,
struct of_phandle_args *spec) | static int exynos_iommu_of_xlate(struct device *dev,
const struct of_phandle_args *spec) | param_type_changed |
function_signature_change | iommu_fwspec_add_ids | drivers/iommu/iommu.c | b42a905b6aad40c092cf17f4b295a4c389bc7206 | int iommu_fwspec_add_ids(struct device *dev, u32 *ids, int num_ids) | int iommu_fwspec_add_ids(struct device *dev, const u32 *ids, int num_ids) | param_type_changed |
function_signature_change | ipmmu_init_platform_device | drivers/iommu/ipmmu-vmsa.c | b42a905b6aad40c092cf17f4b295a4c389bc7206 | static int ipmmu_init_platform_device(struct device *dev,
struct of_phandle_args *args) | static int ipmmu_init_platform_device(struct device *dev,
const struct of_phandle_args *args) | param_type_changed |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.